home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 3729 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.2 KB

  1. Path: news.NetVision.net.il!news
  2. From: Bruce <bruce@netvision.net.il>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: how can I make arrays larger than 64k?
  5. Date: Thu, 25 Jan 1996 11:45:29 +0200
  6. Organization: NetVision LTD.
  7. Message-ID: <31075139.4B76@netvision.net.il>
  8. References: <4e3200$juo@mira.sara.nl>
  9. NNTP-Posting-Host: ts3cp3.netvision.net.il
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0b6a (Win95; I)
  14.  
  15. Paul Langemeijer wrote:
  16. > Hello,
  17. > I am working on a simulation program that generates a large number of
  18. > complex points (1Meg). I used to write this data to a file, but
  19. > now I want to extend this program with a fourier transform of the data,
  20. > so I would like store the data in a large array.
  21. > The function calloc doesnot provide enough memory to do this.
  22. > How can I use a larger part of the 8Mb memory in my pc for storage of
  23. > this array? Do I have to change the compiler settings? How?
  24. > Is there someone with a lot of experiency how can help me on this
  25. > one?
  26. > I am using BorlandC++ for (DOS) pc.
  27. > Thanks a lot!!
  28. > Frederik de Jong
  29. > Email:
  30. > fbdejong@nucleus.phys.uva.nl
  31. > You must use dinamic memory allocation (pointers).
  32.  
  33.  
  34.